home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 4
/
FM Towns Free Software Collection 4 - Disc 1.iso
/
pao
/
towns
/
cdplay
/
src
/
sndplay.h
< prev
next >
Wrap
Text File
|
1991-10-18
|
1KB
|
41 lines
/* << High C V1.4 & 386ASM V2.0 >> ******************************************
**
** SND ファイルを再生用ヘッダ
**
** 1991.01.29 : CREATE
** 1991.01.29 : FINISH
**
** < HISTORY >
** 1991.01.29 : CREATE
**
** < note > : TABS = 4
**
** Programmed by Y.Hirata ( Nifty ID : NAB03321 )
**
******************************************************************************/
typedef unsigned char uchar ;
typedef unsigned short ushort ;
typedef unsigned long ulong ;
typedef unsigned int uint ;
typedef struct _SNDPLAY_DTA {
char _reserved[21] ; /* reserved area */
char _attrib ; /* attribute byte */
ushort _ftime ; /* time of file */
ushort _fdate ; /* date of file */
ulong _fsize ; /* file size */
char d_name[13] ; /* packed file name */
} SNDPLAY_DTA ;
/*-----------------------------------------------------------------------------
** プロトタイプ宣言
-----------------------------------------------------------------------------*/
void SNDPLAY_setdta( SNDPLAY_DTA * ) ;
int SNDPLAY_firstsearch( char *,int,SNDPLAY_DTA * ) ;
int SNDPLAY_getfsize( int,char * ) ;
int SNDPLAY_load( int,char * ) ;
int SNDPLAY_play( int,char * ) ;
void SNDPLAY_stop( int ) ;